Skip to main content
ICT
Lesson A8 - Control Structures
 
Main Previous Next
Title Page >  
Summary >  
Lesson A1 >  
Lesson A2 >  
Lesson A3 >  
Lesson A4 >  
Lesson A5 >  
Lesson A6 >  
Lesson A7 >  
Lesson A8 >  
Lesson A9 >  
Lesson A10 >  
Lesson A11 >  
Lesson A12 >  
Lesson A13 >  
Lesson A14 >  
Lesson A15 >  
Lesson A16 >  
Lesson A17 >  
Lesson A18 >  
Lesson A19 >  
Lesson A20 >  
Lesson A21 >  
Lesson A22 >  
Lesson AB23 >  
Lesson AB24 >  
Lesson AB25 >  
Lesson AB26 >  
Lesson AB27 >  
Lesson AB28 >  
Lesson AB29 >  
Lesson AB30 >  
Lesson AB31 >  
Lesson AB32 >  
Lesson AB33 >  
Vocabulary >  
 

K. Boolean Identifiers page 13 of 17

  1. The execution of if-else statements depends on the value of the Boolean expression. We can use boolean variables to write code that is easier to read.
  1. For example, the boolean variable done could be used to write code that reads more like English.

    Instead of

    if(done == true){
      System.out.println("We are done!");
    }

    we can write

    if(done){
      System.out.println("We are done!");
    }

  2. Programmers often use boolean variables to aid in program flow and readability. The second version is the more preferred way of using a boolean variable in this situation because it is less dangerous. If you make a mistake and only put = instead of == Java will not catch that and interprets the statement as assignment. Some strange results could occur and it can take the programmer a while to catch the error.

 

Main Previous Next
Contact
 © ICT 2006, All Rights Reserved.